home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Team Palmtops 17
/
Palmtops_numero17.iso
/
pc
/
Magazine
/
Programmation Palm
/
Essai1.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2001-01-03
|
325 b
|
20 lines
// Essai1
include "../CControls/Ccontrols.c"
main() {
Chandle hb1;
int e;
hb1=Cbutton(60,70,40,20,1,3);
Csetcontent(hb1,"Clic !");
graph_on();
title("Essai1");
Cdraw(hb1);
while (1) {
e=event(1);
if (Cevent(hb1,e)) {
Csetcontent(hb1,"Hit !");
Cdraw(hb1);
}
}
}